/*$$
{"color":[{"val":"#000000","title":"默认导航文字颜色"},
{"val":"#ffffff","title":"鼠标过滑过文字颜色"},
{"val":"#333333","title":"WAP端导航文字颜色"},
{"val":"#262626","title":"移动端窗口关闭按钮"},
{"val":"#c51616","title":"WAP端二级导航 文字颜色"}],
"background":[{"val":"#ffffff","title":"PC端导航背景颜色"},
{"val":"#ca0000","title":"PC端二级导航鼠标滑过背景颜色"},
{"val":"rgba(255, 255, 255, .96)","title":"WAP端导航窗口背景颜色"},
{"val":"#333333","title":"WAP端导航背景颜色"}],
"border":[{"val":"#dfe0e1","title":"WAP端导航边框"}]}
$$*/
#head_144{
	width: 100%;
	background: #ffffff;
	height: 105px;
	transition: all 1s;
}
#head_144.fixedNav{
	box-shadow: 0px 10px 20px rgba(0, 0, 0, .05);
	position: fixed;
	left: 0;
	top:0;
	width: 100%;
	z-index: 999;
}
#head_144 .header{
	width: 1200px;
	margin: 0 auto;
	height: 100%;
}
#head_144 .logo{
	width: 240px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: start;
}
#head_144 .logo img{
	max-width: 60%;
	max-height: 60%;
	
}
#head_144 .nav{
	width: calc(100% - 320px);
	display: flex;
}
#head_144 .nav .navTit{
	flex: 1;
	text-align: center;
	line-height: 105px;
	font-size: 14px;
	position: relative;
}
#head_144 .nav .navTit .tit{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
#head_144 .nav .navTit .tit i{
	color: #000000;
	position: relative;
	z-index: 20;
	transition: all 1.2s;
}
#head_144 .nav .navTit .tit:hover i{
	color: #ffffff;
}
#head_144 .nav .navTit .tit::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 0;
	height: 0;
	left: 50%;
	top: 50%;
	z-index: 20;
	border-radius: 50%;
	/* transform: translate(-50%, -50%); */
	background: #ca0000;
	transition: all 1s;
}
#head_144 .nav .navTit .tit:hover::before{
	height: 200%;
	width: 200%;
	left: -50%;
	top:-50%;
}
#head_144 .navTit .levelUl{
	position: absolute;
	top:105px;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition:all 1.5s;
	height: 0;
	overflow: hidden;
	background: #ffffff;
	border-radius: 5px;
	z-index:99999;
}
#head_144 .navTit:hover .levelUl{
	height: auto;
	opacity: 1;
}
#head_144 .leveltit i{
	position: relative;
	z-index: 9;
	display: block;
	min-width: 120px;
	padding: 0 20px;
	white-space: nowrap;
	line-height: 45px;
	color:#333333;
}
#head_144 .leveltit{
	width: auto;
	background:#ffffff;
	text-align: center;
	height: 45px;
	display: block;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}
#head_144 .leveltit::after{
	background:#ca0000;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	transition: all .5s;
}
#head_144 .leveltit:hover::after{
	width: 100%;
}
#head_144 .leveltit:hover i{
	color:#ffffff;
}
#head_144 .navBtn{
	display: none;
	width: 70px;
	height:60px;
	float: right;
	cursor: pointer;
	position: relative;
	margin-right:20px;
}
#head_144 .navBtn .span_0{
    position: absolute;
    width: 30px;
	right: 0;
	background: #333333;
	height: 3px;
    top: 40%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
#head_144 .navBtn.cur .span_0{
    top: 46%;
}
#head_144 .navBtn.cur .span_0.span_1{
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
}
#head_144 .navBtn.cur .span_0.span_2{
    opacity: 0;
}
#head_144 .navBtn.cur .span_0.span_3{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#head_144 .navBtn .span_0.span_1{
    top: 35%;
}
#head_144 .navBtn .span_0.span_2{
    top: 50%;
    width:30px;
}
#head_144 .navBtn .span_0.span_3{
    top: 65%;
}
/* 右侧菜单 */
#head_144 #menuClosed{
    position: absolute;
    right:15px;
    top:15px;
    font-size:25px;
    color: #262626;
	font-weight: bold;
}
#head_144 .menu{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:rgba(255, 255, 255, .96);
    z-index: 999999999;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s ease .4s,opacity .4s ease;
    transition: visibility 0s ease .4s,opacity .4s ease;
}
#head_144 .menu.cur{
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .05s;
            transition-delay: .05s;
}
#head_144 .menu-cnt{
	width:100%;
	height: 100%;
    right:0;
    top: 0;
    padding:60px 30px 30px 30px;
}
#head_144 .menu-cnt.cur{
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
#head_144 .menu-item{
    border-bottom:#dfe0e1 1px solid;
	padding:10px 20px;
	height: auto;
	display: block;
}
#head_144 .menu-list li .dropdown_menu{
	display: none;
}
#head_144 .menu-list li.active .dropdown_menu{
	display:block;
}
#head_144 .menu-list li .dropdown_menu a{
	display:block;
	height:28px;
	color:#c51616;
	line-height:28px;
	font-size:14px;
	padding-left: 20px;
	box-sizing:border-box;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#head_144 .menu-list li .dropdown_menu a:last-child{
	border:none;
}
#head_144 .menu-title{
    position: relative;
    font-size:16px;
    font-weight: 500;  
	cursor: pointer;
	font-weight: bold;
	display: block;
	line-height:40px;
	color:#333333;
}
#head_144 .menu-title a{
	color:#333333;
}
#head_144 .menu-item.up .menu-title{
	background: url(./../../../static/images/HD00017_06.png) no-repeat right center;
	background-size: auto 10px;
}
#head_144 .menu-item.up.active .menu-title{
	background: url(./../../../static/images/HD00017_05.png) no-repeat right center;
	background-size: auto 10px;
}
#head_144 .menu-list{
    height: 75%;
	overflow: auto;
	width: 100%;
}
#head_144 .menu-contact{
	position: absolute;
	bottom:30px;
	background: url(./../../../static/images/HD00017_07.png) no-repeat;
	width: 170px;
	height: 26px;
	background-size: 100%;
	padding-left:40px;
	color:#333333;
	font-style:italic;
	display: block;
	line-height: 26px;
	font-weight: bold;
	font-size: 14px;
}
#bananer_144{
	width:1480px;
	overflow: hidden;
	/* padding: 10px 0; */
	margin: 0 auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	border-radius: 30px;
}
@media screen and (max-width: 1400px) {
	#bananer_144{
		width:calc(100% - 120px);
		margin: 0 60px;
	}
}
#bananer_144 .bannerSwiper{
	width:100%;
	/* overflow: hidden; */
	position: relative;
	
	overflow: hidden;
}
#bananer_144 .bannerSwiper .swiper-slide{
	width: 100%;
	height: 100%;
}
#bananer_144 .bannerSwiper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: all 1s cubic-bezier(0.7, 0.18, 0.53, 0.75);
	transform: scale(1, 1)
}
#bananer_144 .bannerSwiper .swiper-slide-active img{
	opacity: 1;
	transform: scale(1.02, 1.02);
}
#bananer_144 .bannerSwiper .swiper-slide,
#bananer_144 .bannerSwiper .swiper-wrapper{
	width: 100%;
	height: 100%;
}
#bananer_144 .bannerSwiper .slider-btn-prev {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: -81px;
    width: 81px;
    height: 81px;
    margin-top: -20px;
    background: url(./../../../static/images/HD00017_03.png) 50% 50% no-repeat;
    transition: all 0.5s linear;
    cursor: pointer;
}
#bananer_144 .bannerSwiper:hover .slider-btn-prev {
    left: 10%;
}
#bananer_144 .bannerSwiper .slider-btn-next {
    position: absolute;
    z-index: 30;
    top: 50%;
    right: -81px;
    width: 81px;
    height: 81px;
    margin-top: -20px;
    background: url(./../../../static/images/HD00017_04.png) 50% 50% no-repeat;
    transition: all 0.5s linear;
    cursor: pointer;
}
#bananer_144 .bannerSwiper:hover .slider-btn-next {
    right: 10%;
    cursor: pointer;
}
#bananer_144 #pcBana{
	display: block;
}
#bananer_144 #wapBana{
	display: none;
}
#bananer_144 .pagination{
	width: 100%;
	position: absolute;
	z-index: 10;
	text-align: center;
	bottom: 35px;
}
#bananer_144 .swiper-pagination-bullet{
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #ffffff;
	margin: 0 10px;
	opacity: 1;
}
#bananer_144 .swiper-pagination-bullet-active{
	background: #ca0000;
}
@media screen and (max-width: 1200px) {
	#head_144 .header{
		width: 100%;
	}
	#head_144 .logo{
		padding-left: 20px;
	}
}
@media screen and (max-width: 821px) {
	#head_144 .nav .navTit{
		font-size: 12px;
	}
	#head_144 .nav{
		width: calc(100% - 260px);
	}
}
@media screen and (max-width: 768px){
	#head_144 .navBtn{
		display: block;
	}
	#head_144 .nav{
		display: none;
	}
	#head_144{
		height: 60px;
	}
	#bananer_144 #pcBana{
		display: none;
	}
	#bananer_144 #wapBana{
		display: block;
	}
	#bananer_144{
		margin: 0 20px;
		width: calc(100% - 40px);
	}
}